home *** CD-ROM | disk | FTP | other *** search
/ SGI Hot Mix 17 / Hot Mix 17.iso / HM17_SGI / html / vendors / charybda / software / install.csh next >
Linux/UNIX/POSIX Shell Script  |  1997-07-26  |  280b  |  13 lines

  1. #!/bin/csh -f
  2. echo " "
  3. echo "You do not appear to have the"
  4. echo "Charybda Diver demo installed."
  5. echo " "
  6. echo "Would you like to install it (y/n)?:  \c"
  7. set ans=($<)
  8. if ( $ans != 'y' ) then
  9.         exit
  10. else
  11.         $HOTMIXDIR/html/vendors/charybda/software/InstallIt.csh
  12. endif
  13.